home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zdict.c < prev    next >
C/C++ Source or Header  |  1997-01-19  |  12KB  |  495 lines

  1. /* Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zdict.c */
  20. /* Dictionary operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "idict.h"
  25. #include "dstack.h"
  26. #include "ilevel.h"            /* for [count]dictstack */
  27. #include "iname.h"            /* for dict_find_name */
  28. #include "ipacked.h"            /* for inline dict lookup */
  29. #include "ivmspace.h"
  30. #include "store.h"
  31.  
  32. /* <int> dict <dict> */
  33. int
  34. zdict(register os_ptr op)
  35. {    check_type(*op, t_integer);
  36. #if arch_sizeof_int < arch_sizeof_long
  37.     check_int_leu(*op, max_uint);
  38. #else
  39.     if ( op->value.intval < 0 )
  40.       return_error(e_rangecheck);
  41. #endif
  42.     return dict_create((uint)op->value.intval, op);
  43. }
  44.  
  45. /* <dict> maxlength <int> */
  46. private int
  47. zmaxlength(register os_ptr op)
  48. {    check_type(*op, t_dictionary);
  49.     check_dict_read(*op);
  50.     make_int(op, dict_maxlength(op));
  51.     return 0;
  52. }
  53.  
  54. /* <dict> begin - */
  55. int
  56. zbegin(register os_ptr op)
  57. {    check_type(*op, t_dictionary);
  58.     check_dict_read(*op);
  59.     if ( dsp == dstop )
  60.       return_error(e_dictstackoverflow);
  61.     ++dsp;
  62.     ref_assign(dsp, op);
  63.     dict_set_top();
  64.     pop(1);
  65.     return 0;
  66. }
  67.  
  68. /* - end - */
  69. int
  70. zend(register os_ptr op)
  71. {    if ( ref_stack_count_inline(&d_stack) == min_dstack_size )
  72.       {    /* We would underflow the d-stack. */
  73.         return_error(e_dictstackunderflow);
  74.       }
  75.     while ( dsp == dsbot )
  76.       {    /* We would underflow the current block. */
  77.         ref_stack_pop_block(&d_stack);
  78.       }
  79.     dsp--;
  80.     dict_set_top();
  81.     return 0;
  82. }
  83.  
  84. /* <key> <value> def - */
  85. /* We make this into a separate procedure because */
  86. /* the interpreter will almost always call it directly. */
  87. int
  88. zop_def(register os_ptr op)
  89. {    register os_ptr op1 = op - 1;
  90.     ref *pvslot;
  91.     /* The following combines a check_op(2) with a type check. */
  92.     switch ( r_type(op1) )
  93.     {
  94.     case t_name:
  95.     {    /* We can use the fast single-probe lookup here. */
  96.         uint nidx = name_index(op1);
  97.         uint htemp;
  98.         if_dict_find_name_by_index_top(nidx, htemp, pvslot)
  99.         {    if ( dtop_can_store(op) )
  100.               goto ra;
  101.         }
  102.         break;            /* handle all slower cases */
  103.     }
  104.     case t_null:
  105.         return_error(e_typecheck);
  106.     case t__invalid:
  107.         return_error(e_stackunderflow);
  108.     }
  109.     /* Combine the check for a writable top dictionary with */
  110.     /* the global/local store check.  See dstack.h for details. */
  111.     if ( !dtop_can_store(op) )
  112.     {    int code;
  113.         check_dict_write(*dsp);
  114.         /*
  115.          * If the dictionary is writable, the problem must be
  116.          * an invalid store.  We need a special check to allow
  117.          * storing references to local objects in systemdict,
  118.          * or in dictionaries known in systemdict,
  119.          * during initialization (see ivmspace.h).
  120.          */
  121.         if ( ialloc_is_in_save() )
  122.           return_error(e_invalidaccess);
  123.         if ( dsp->value.pdict != systemdict->value.pdict )
  124.           {    /* See if systemdict is still writable, */
  125.             /* i.e., we are still doing initialization. */
  126.             int index;
  127.             ref elt[2];        /* key, value */
  128.             check_dict_write(*systemdict);
  129.             /* See if this dictionary is known in systemdict. */
  130.             for ( index = dict_first(systemdict);
  131.                   (index = dict_next(systemdict, index, &elt[0])) >= 0;
  132.                 )
  133.               if ( r_has_type(&elt[1], t_dictionary) &&
  134.                    elt[1].value.pdict == dsp->value.pdict
  135.                  )
  136.                 break;
  137.             if ( index < 0 )
  138.               return_error(e_invalidaccess);
  139.           }
  140.         switch ( code = dict_find(dsp, op1, &pvslot) )
  141.         {
  142.         case 1:                /* found */
  143.             goto ra;
  144.         default:            /* some other error */
  145.             return code;
  146.         /*
  147.          * If we have to grow the dictionary, do it now, so that
  148.          * the allocator will allocate the copy in the correct space.
  149.          */
  150.         case e_dictfull:
  151.             if ( !dict_auto_expand )
  152.               return_error(e_dictfull);
  153.             code = dict_grow(dsp);
  154.             if ( code < 0 )
  155.               return code;
  156.         case 0:
  157.             ;
  158.         }
  159.         /* Temporarily identify the dictionary as local, */
  160.         /* so the store check in dict_put won't fail. */
  161.         {    uint space = r_space(dsp);
  162.             r_set_space(dsp, avm_local);
  163.             code = dict_put(dsp, op1, op);
  164.             r_set_space(dsp, space);
  165.             return code;
  166.         }
  167.     }
  168.     /* Save a level of procedure call in the common (redefinition) */
  169.     /* case.  With the current interfaces, we pay a double lookup */
  170.     /* in the uncommon case. */
  171.     if ( dict_find(dsp, op1, &pvslot) <= 0 )
  172.       return dict_put(dsp, op1, op);
  173. ra:    ref_assign_old_inline(&dsp->value.pdict->values, pvslot, op,
  174.                   "dict_put(value)");
  175.     return 0;
  176. }
  177. int
  178. zdef(os_ptr op)
  179. {    int code = zop_def(op);
  180.     if ( code >= 0 ) { pop(2); }
  181.     return code;
  182. }
  183.  
  184. /* <key> load <value> */
  185. private int
  186. zload(register os_ptr op)
  187. {    ref *pvalue;
  188.     switch ( r_type(op) )
  189.     {
  190.     case t_name:
  191.         /* Use the fast lookup. */
  192.         if ( (pvalue = dict_find_name(op)) == 0 )
  193.           return_error(e_undefined);
  194.         ref_assign(op, pvalue);
  195.         return 0;
  196.     case t_null:
  197.         return_error(e_typecheck);
  198.     case t__invalid:
  199.         return_error(e_stackunderflow);
  200.     default:
  201.     {    /* Use an explicit loop. */
  202.         uint size = ref_stack_count(&d_stack);
  203.         uint i;
  204.         for ( i = 0; i < size; i++ )
  205.           {    ref *dp = ref_stack_index(&d_stack, i);
  206.             check_dict_read(*dp);
  207.             if ( dict_find(dp, op, &pvalue) > 0 )
  208.               {    ref_assign(op, pvalue);
  209.                 return 0;
  210.               }
  211.           }
  212.         return_error(e_undefined);
  213.     }
  214.     }
  215. }
  216.  
  217. /* get - implemented in zgeneric.c */
  218.  
  219. /* put - implemented in zgeneric.c */
  220.  
  221. /* <dict> <key> .undef - */
  222. /* <dict> <key> undef - */
  223. private int
  224. zundef(register os_ptr op)
  225. {    check_type(op[-1], t_dictionary);
  226.     check_dict_write(op[-1]);
  227.     dict_undef(op - 1, op);        /* ignore undefined error */
  228.     pop(2);
  229.     return 0;
  230. }
  231.  
  232. /* <dict> <key> known <bool> */
  233. private int
  234. zknown(register os_ptr op)
  235. {    register os_ptr op1 = op - 1;
  236.     ref *pvalue;
  237.     check_type(*op1, t_dictionary);
  238.     check_dict_read(*op1);
  239.     make_bool(op1, (dict_find(op1, op, &pvalue) > 0 ? 1 : 0));
  240.     pop(1);
  241.     return 0;
  242. }
  243.  
  244. /* <key> where <dict> true */
  245. /* <key> where false */
  246. int
  247. zwhere(register os_ptr op)
  248. {    check_op(1);
  249.     STACK_LOOP_BEGIN(&d_stack, bot, size)
  250.       {    const ref *pdref = bot + size;
  251.         ref *pvalue;
  252.         while ( pdref-- > bot )
  253.           {    check_dict_read(*pdref);
  254.             if ( dict_find(pdref, op, &pvalue) > 0 )
  255.               {    push(1);
  256.                 ref_assign(op - 1, pdref);
  257.                 make_true(op);
  258.                 return 0;
  259.               }
  260.           }
  261.        }
  262.     STACK_LOOP_END(bot, size)
  263.     make_false(op);
  264.     return 0;
  265. }
  266.  
  267. /* copy for dictionaries -- called from zcopy in zgeneric.c. */
  268. /* Only the type of *op has been checked. */
  269. int
  270. zcopy_dict(register os_ptr op)
  271. {    os_ptr op1 = op - 1;
  272.     int code;
  273.     check_type(*op1, t_dictionary);
  274.     check_dict_read(*op1);
  275.     check_dict_write(*op);
  276.     if ( !dict_auto_expand &&
  277.          (dict_length(op) != 0 || dict_maxlength(op) < dict_length(op1))
  278.        )
  279.       return_error(e_rangecheck);
  280.     code = dict_copy(op1, op);
  281.     if ( code < 0 )
  282.       return code;
  283.     /*
  284.      * In Level 1 systems, we must copy the access attributes too.
  285.      * The only possible effect this can have is to make the
  286.      * copy read-only if the original dictionary is read-only.
  287.      */
  288.     if ( !level2_enabled )
  289.       r_copy_attrs(dict_access_ref(op), a_write, dict_access_ref(op1));
  290.     ref_assign(op1, op);
  291.     pop(1);
  292.     return 0;
  293. }
  294.  
  295. /* - currentdict <dict> */
  296. private int
  297. zcurrentdict(register os_ptr op)
  298. {    push(1);
  299.     ref_assign(op, dsp);
  300.     return 0;
  301. }
  302.  
  303. /* - countdictstack <int> */
  304. private int
  305. zcountdictstack(register os_ptr op)
  306. {    uint count = ref_stack_count(&d_stack);
  307.     push(1);
  308.     if ( !level2_enabled )
  309.       count--;        /* see dstack.h */
  310.     make_int(op, count);
  311.     return 0;
  312. }
  313.  
  314. /* <array> dictstack <subarray> */
  315. private int
  316. zdictstack(register os_ptr op)
  317. {    uint count = ref_stack_count(&d_stack);
  318.     check_write_type(*op, t_array);
  319.     if ( !level2_enabled )
  320.       count--;        /* see dstack.h */
  321.     return ref_stack_store(&d_stack, op, count, 0, 0, true, "dictstack");
  322. }
  323.  
  324. /* - cleardictstack - */
  325. private int
  326. zcleardictstack(os_ptr op)
  327. {    while ( zend(op) >= 0 ) ;
  328.     return 0;
  329. }
  330.  
  331. /* ------ Extensions ------ */
  332.  
  333. /* <dict1> <dict2> .dictcopynew <dict2> */
  334. private int
  335. zdictcopynew(register os_ptr op)
  336. {    os_ptr op1 = op - 1;
  337.     int code;
  338.     check_type(*op1, t_dictionary);
  339.     check_dict_read(*op1);
  340.     check_type(*op, t_dictionary);
  341.     check_dict_write(*op);
  342.     /* This is only recognized in Level 2 mode. */
  343.     if ( !dict_auto_expand )
  344.       return_error(e_undefined);
  345.     code = dict_copy_new(op1, op);
  346.     if ( code < 0 )
  347.       return code;
  348.     ref_assign(op1, op);
  349.     pop(1);
  350.     return 0;
  351. }
  352.  
  353. /* -mark- <key0> <value0> <key1> <value1> ... .dicttomark <dict> */
  354. /* This is the Level 2 >> operator. */
  355. private int
  356. zdicttomark(register os_ptr op)
  357. {    uint count2 = ref_stack_counttomark(&o_stack);
  358.     ref rdict;
  359.     int code;
  360.     uint idx;
  361.  
  362.     if ( count2 == 0 )
  363.       return_error(e_unmatchedmark);
  364.     count2--;
  365.     if ( (count2 & 1) != 0 )
  366.       return_error(e_rangecheck);
  367.     code = dict_create(count2 >> 1, &rdict);
  368.     if ( code < 0 )
  369.       return code;
  370.     /* << /a 1 /a 2 >> => << /a 1 >>, i.e., */
  371.     /* we must enter the keys in top-to-bottom order. */
  372.     for ( idx = 0; idx < count2; idx += 2 )
  373.       { code = dict_put(&rdict,
  374.                 ref_stack_index (&o_stack, idx + 1),
  375.                 ref_stack_index (&o_stack, idx));
  376.         if ( code < 0 )
  377.           { /* There's no way to free the dictionary -- too bad. */
  378.         return code;
  379.           }
  380.       }
  381.     ref_stack_pop(&o_stack, count2);
  382.     ref_assign(osp, &rdict);
  383.     return code;
  384. }
  385.  
  386. /* <dict> <key> <value> .forceput - */
  387. /*
  388.  * This forces a "put" even if the dictionary is not writable, and (if
  389.  * the dictionary is systemdict) even if the value is in local VM.
  390.  * It is meant to be used only for replacing the value of FontDirectory
  391.  * in systemdict when switching between local and global VM,
  392.  * and a few similar applications.  After initialization, this operator
  393.  * should no longer be accessible by name.
  394.  */
  395. private int
  396. zforceput(register os_ptr op)
  397. {    os_ptr odp = op - 2;
  398.     int code;
  399.     check_type(*odp, t_dictionary);
  400.     if ( odp->value.pdict == systemdict->value.pdict )
  401.       {    uint space = r_space(odp);
  402.         r_set_space(odp, avm_local);
  403.         code = dict_put(odp, op - 1, op);
  404.         r_set_space(odp, space);
  405.       }
  406.     else
  407.       code = dict_put(odp, op - 1, op);
  408.     if ( code < 0 )
  409.       return code;
  410.     pop(3);
  411.     return 0;
  412. }
  413.  
  414. /* <dict> <key> .knownget <value> true */
  415. /* <dict> <key> .knownget false */
  416. private int
  417. zknownget(register os_ptr op)
  418. {    register os_ptr op1 = op - 1;
  419.     ref *pvalue;
  420.     check_type(*op1, t_dictionary);
  421.     check_dict_read(*op1);
  422.     if ( dict_find(op1, op, &pvalue) <= 0 )
  423.     {    make_false(op1);
  424.         pop(1);
  425.     }
  426.     else
  427.     {    ref_assign(op1, pvalue);
  428.         make_true(op);
  429.     }
  430.     return 0;
  431. }
  432.  
  433. /* <dict> <key> .knownundef <bool> */
  434. private int
  435. zknownundef(register os_ptr op)
  436. {    os_ptr op1 = op - 1;
  437.     int code;
  438.     check_type(*op1, t_dictionary);
  439.     check_dict_write(*op1);
  440.     code = dict_undef(op1, op);
  441.     make_bool(op1, code == 0);
  442.     pop(1);
  443.     return 0;
  444. }
  445.  
  446. /* <dict> <int> .setmaxlength - */
  447. private int
  448. zsetmaxlength(register os_ptr op)
  449. {    os_ptr op1 = op - 1;
  450.     uint new_size;
  451.     int code;
  452.  
  453.     check_type(*op1, t_dictionary);
  454.     check_dict_write(*op1);
  455.     check_type(*op, t_integer);
  456. #if arch_sizeof_int < arch_sizeof_long
  457.     check_int_leu(*op, max_uint);
  458. #else
  459.     if ( op->value.intval < 0 )
  460.       return_error(e_rangecheck);
  461. #endif
  462.     new_size = (uint)op->value.intval;
  463.     if ( dict_length(op - 1) > new_size )
  464.       return_error(e_dictfull);
  465.     code = dict_resize(op - 1, new_size);
  466.     if ( code >= 0 )
  467.       pop(2);
  468.     return code;
  469. }
  470.  
  471. /* ------ Initialization procedure ------ */
  472.  
  473. BEGIN_OP_DEFS(zdict_op_defs) {
  474.     {"0cleardictstack", zcleardictstack},
  475.     {"1begin", zbegin},
  476.     {"0countdictstack", zcountdictstack},
  477.     {"0currentdict", zcurrentdict},
  478.     {"2def", zdef},
  479.     {"1dict", zdict},
  480.     {"0dictstack", zdictstack},
  481.     {"0end", zend},
  482.     {"2known", zknown},
  483.     {"1load", zload},
  484.     {"1maxlength", zmaxlength},
  485.     {"2.undef", zundef},        /* we need this even in Level 1 */
  486.     {"1where", zwhere},
  487.         /* Extensions */
  488.     {"2.dictcopynew", zdictcopynew},
  489.     {"1.dicttomark", zdicttomark},
  490.     {"3.forceput", zforceput},
  491.     {"2.knownget", zknownget},
  492.     {"1.knownundef", zknownundef},
  493.     {"2.setmaxlength", zsetmaxlength},
  494. END_OP_DEFS(0) }
  495.